翻訳と辞書
Words near each other
・ Hibbins
・ Hibbitt
・ Hibbs
・ Hibbs Pyramid
・ Hibel Museum of Art
・ Hiber Ruíz
・ Hibera
・ Hiberna
・ Hibernaculum
・ Hibernaculum (album)
・ Hibernaculum (botany)
・ Hibernaculum (song)
・ Hibernaculum (zoology)
・ Hibernaspidoidei
・ Hibernaspis
Hibernate (Java)
・ Hibernating myocardium
・ Hibernation
・ Hibernation (computing)
・ Hibernatus
・ Hibernia
・ Hibernia (disambiguation)
・ Hibernia (locomotive)
・ Hibernia (personification)
・ Hibernia (ship)
・ Hibernia 41-E
・ Hibernia Bank (San Francisco)
・ Hibernia Bank Building
・ Hibernia Basketball
・ Hibernia Beach LIVE


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Hibernate (Java) : ウィキペディア英語版
Hibernate (Java)

Hibernate ORM (Hibernate in short) is an object-relational mapping framework for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Hibernate solves object-relational impedance mismatch problems by replacing direct persistence-related database accesses with high-level object handling functions.
Hibernate is free software that is distributed under the GNU Lesser General Public License 2.1.
Hibernate's primary feature is mapping from Java classes to database tables (and from Java data types to SQL data types). Hibernate also provides data query and retrieval facilities. It generates SQL calls and relieves the developer from manual result set handling and object conversion. Applications using Hibernate are portable to supported SQL databases with little performance overhead .
==Mapping==
Mapping Java classes to database tables is accomplished through the configuration of an XML file or by using Java Annotations. When using an XML file, Hibernate can generate skeleton source code for the persistence classes. This is unnecessary when annotations are used. Hibernate can use the XML file or the annotations to maintain the database schema.
Facilities to arrange one-to-many and many-to-many relationships between classes are provided. In addition to managing associations between objects, Hibernate can also manage reflexive associations where an object has a one-to-many relationship with other instances of its own type.
Hibernate supports the mapping of custom value types. This makes the following scenarios possible:
* Overriding the default SQL type that Hibernate chooses when mapping a column to a property.
* Mapping Java Enum to columns as if they were regular properties.
* Mapping a single property to multiple columns.
Definition:
Objects in a front-end application follow OOP principles, while objects in the back-end follow database normalization principles, resulting in different representation requirements. This problem is called "object-relational impedance mismatch". Mapping is a way of resolving the impedance mismatch problem.
Mapping tells the ORM tool which java class object to store in which database table.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Hibernate (Java)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.